← Index
NYTProf Performance Profile   
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:58 2013

Filename(eval 1151)[/usr/share/perl/5.10/CGI.pm:869]
StatementsExecuted 4 statements in 24µs
Eval Invoked At/usr/share/perl/5.10/CGI.pm line 869
Sibling evals1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11123µs30µsCGI::::cacheCGI::cache
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
# spent 30µs (23+7) within CGI::cache which was called: # once (23µs+7µs) by CGI::header at line 832 of CGI.pm
package CGI; sub cache {
2115µs17µs my($self,$new_value) = self_or_default(@_);
# spent 7µs making 1 call to CGI::self_or_default
311µs $new_value = '' unless $new_value;
41500ns if ($new_value ne '') {
5 $self->{'cache'} = $new_value;
6 }
717µs return $self->{'cache'};
8}
9
10;